Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633440 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/36 - Hangman

scripts/ cody/swapnilsparsh/30DaysOfJavaScript/36 - Hangman/scripts/
3 Items
  • app.js
  • request.js
  • hangman.js
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/36 - Hangman/assets/
    1 Items
  • hangman-game.png
  • styles.css cody/swapnilsparsh/30DaysOfJavaScript/36 - Hangman/styles.css
    99 Views
    0 Comments
    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }

    html {
    font-size: 62.5%;
    index.html cody/swapnilsparsh/30DaysOfJavaScript/36 - Hangman/index.html
    293 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="assets/hangman-game.png" type="image/x-icon">
    <link rel="stylesheet" href="./styles.css">
    <title>Hangman</title>
    </head>
    <body>